projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2371ed8
)
GtkThemingEngine: Render tabs background in the correct direction.
author
Carlos Garnacho
<carlosg@gnome.org>
Mon, 13 Dec 2010 11:38:37 +0000
(12:38 +0100)
committer
Carlos Garnacho
<carlosg@gnome.org>
Mon, 13 Dec 2010 21:31:28 +0000
(22:31 +0100)
The cairo context has been already rotated, so using GTK_JUNCTION_BOTTOM
is expected to be used there.
gtk/gtkthemingengine.c
patch
|
blob
|
history
diff --git
a/gtk/gtkthemingengine.c
b/gtk/gtkthemingengine.c
index be50e9e8163fddf07fee2c99b4e112b726abf98b..e3cde59e24c1f4f5914ce70c692d495ba4b75b84 100644
(file)
--- a/
gtk/gtkthemingengine.c
+++ b/
gtk/gtkthemingengine.c
@@
-2506,12
+2506,11
@@
gtk_theming_engine_render_extension (GtkThemingEngine *engine,
gap_side == GTK_POS_BOTTOM)
render_background_internal (engine, cr,
0, 0, width, height,
-
junction
);
+
GTK_JUNCTION_BOTTOM
);
else
render_background_internal (engine, cr,
0, 0, height, width,
- junction);
-
+ GTK_JUNCTION_BOTTOM);
cairo_restore (cr);
cairo_save (cr);